home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Windows
/
GrayRegion.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
449b
|
31 lines
// GrayRegion.h
#ifndef GrayRegion_h
#define GrayRegion_h
#ifndef Rectangle_h
#include "Rectangle.h"
#endif
#include <QuickDraw.h>
class GrayRegion
{
private:
const RgnHandle region;
GrayRegion();
// not implemented:
GrayRegion( const GrayRegion& );
void operator=( const GrayRegion& );
public:
static const GrayRegion& The();
operator RgnHandle() const { return region; }
Rectangle Bounds() const;
};
#endif